home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Skunkware 5
/
Skunkware 5.iso
/
src
/
X11
/
tclMotif-1.4
/
programs
/
prog37
< prev
next >
Wrap
Text File
|
1995-06-29
|
479b
|
23 lines
# check pixel to string converter
# the 2 labels should show the same colours
xtAppInitialize -class Program
xmRowColumn .r managed
xmLabel .r.l1 managed \
-foreground #3a7 \
-background #a73 \
-width 200 \
-labelString "hello there"
xmLabel .r.l2 managed \
-width 200 \
-labelString "hello there"
.r.l1 getValues -foreground fg -background bg
puts stdout "Fg: $fg, bg: $bg"
.r.l2 setValues -foreground $fg -background $bg
. realizeWidget
. mainLoop